NoSQL operator: csvtotable

Converts a CSV (comma-separated values) file into a NoSQL table.

Usage: csvtotable [options]

Options:
    --input (-i) 'file'
      Read input from 'file' instead of STDIN.

    --output (-o) 'file'
      Write output to 'file' instead of STDOUT.

    --no-cr (-n)
      Do not preserve carriage-return (\r) characters in quoted fields.

    --help (-h)
      Display this help text.

Notes:

Converts a CSV (comma-separated values) data format into a NoSQL table.
CSV is a data exchange format produced by many popular third-party 
applications. This program abides by the CSV specs described at
http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm#FileFormat
Back